home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / angry / scene1_2.dir / 00029_Script_29 < prev    next >
Text File  |  1999-03-01  |  389b  |  21 lines

  1. on enterFrame
  2.   
  3.   if rollover(2) then 
  4.     go to frame "GuyText"
  5.     set the member of sprite(5) to member "GuyRollOverLOOP"
  6.     cursor [the memberNum of member "pointy", the memberNum of member "pointy_mask"]
  7.     
  8.   end if
  9.   
  10.   if NOT rollover(2) then 
  11.     set the member of sprite(5) to "GuyStand"
  12.     cursor -1
  13.   end if
  14.   
  15. end 
  16.  
  17.  
  18. on exitFrame
  19.   go to the frame
  20. end
  21.